home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970626-19970929 / 000111_news@newsmaster….columbia.edu _Fri Jul 25 14:44:13 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id OAA01522
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 25 Jul 1997 14:44:13 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id OAA29204
  7.     for kermit.misc@watsun; Fri, 25 Jul 1997 14:44:12 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Ending 'connect' mode
  12. Date: 25 Jul 1997 18:44:08 GMT
  13. Organization: Columbia University
  14. Lines: 19
  15. Message-ID: <5ras5o$d9t$1@apakabar.cc.columbia.edu>
  16. References: <33D87BED.62FD@gssec.bt.co.uk>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:7392
  19.  
  20. In article <33D87BED.62FD@gssec.bt.co.uk>,
  21. Scott Brennan  <Scott.Brennan@gssec.bt.co.uk> wrote:
  22. : How do I end connect mode from within a script??
  23. You don't.  The user has to escape back manually.  
  24.  
  25. : i.e. at the Kermit prompt I would type Ctrl-\ and then C. How can
  26. : I do the same from within a script??
  27. Don't use CONNECT.  Use INPUT and OUTPUT instead.  CONNECT connects
  28. the real keyboard and screen to the host.  INPUT and OUTPUT are
  29. scripted versions of what happens during CONNECT.  OUTPUT sends characters
  30. as if you had typed them, INPUT looks for prompts, etc, as if you were
  31. looking for them on the screen with your eyes.
  32.  
  33. Script programming is thoroughly introduced and explained in the relevant
  34. manual, "Using C-Kermit" or "Using MS-DOS Kermit".
  35.  
  36. - Frank